projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2542e9
)
tests: Add missing margin for testentrycompletion
author
Alexander Mikhaylenko
<alexm@gnome.org>
Sun, 10 May 2020 22:47:39 +0000
(
03:47
+0500)
committer
Alexander Mikhaylenko
<alexm@gnome.org>
Sun, 10 May 2020 22:47:39 +0000
(
03:47
+0500)
tests/testentrycompletion.c
patch
|
blob
|
history
diff --git
a/tests/testentrycompletion.c
b/tests/testentrycompletion.c
index 2f726b53efe239ff1db83bbc488863596499b61c..e06dc3f5ecbf9005e41600c532d95c3a6a3d9f1d 100644
(file)
--- a/
tests/testentrycompletion.c
+++ b/
tests/testentrycompletion.c
@@
-314,6
+314,10
@@
main (int argc, char *argv[])
g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_widget_set_margin_start (vbox, 5);
+ gtk_widget_set_margin_end (vbox, 5);
+ gtk_widget_set_margin_top (vbox, 5);
+ gtk_widget_set_margin_bottom (vbox, 5);
gtk_window_set_child (GTK_WINDOW (window), vbox);
label = gtk_label_new (NULL);